




#---------------------------------------------------------------
# Allow the fill, decap, etc., cells to be parallelized
#---------------------------------------------------------------
foreach cell $cells1 {
if {[regexp {gf180mcu_fd_sc_[^_]+__fillcap_[[:digit:]]+} $cell match]} {
property "-circuit1 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__endcap} $cell match]} {
property "-circuit1 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__fill_[[:digit:]]+} $cell match]} {
property "-circuit1 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__filltie} $cell match]} {
property "-circuit1 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__antenna} $cell match]} {
property "-circuit1 $cell" parallel enable
}
}
foreach cell $cells2 {
if {[regexp {gf180mcu_fd_sc_[^_]+__fillcap_[[:digit:]]+} $cell match]} {
property "-circuit2 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__endcap} $cell match]} {
property "-circuit2 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__fill_[[:digit:]]+} $cell match]} {
property "-circuit2 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__filltie} $cell match]} {
property "-circuit2 $cell" parallel enable
}
if {[regexp {gf180mcu_fd_sc_[^_]+__antenna} $cell match]} {
property "-circuit2 $cell" parallel enable
}
}


